* doc/misc/cl.texi (Mapping over Sequences): Rename mapc => cl-mapc.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 12 Aug 2010 09:02:02 +0000 (11:02 +0200)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 12 Aug 2010 09:02:02 +0000 (11:02 +0200)
doc/misc/ChangeLog
doc/misc/cl.texi

index 4d2307f055fc053349ad9c7841e43f74ac108f1c..bd4b9c1981700cc7d319ea4d5145a0e6013da428 100644 (file)
@@ -1,3 +1,7 @@
+2010-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * cl.texi (Mapping over Sequences): Rename mapc => cl-mapc.
+
 2010-08-09  Jay Belanger  <jay.p.belanger@gmail.com>
 
        * calc.texi (Customizing Calc): Rearrange description of new
index 755b2f3f1b70494108ca7e37858d190848aea355..96e4a28ae82dabaef3654bfc10a1be298d63d482 100644 (file)
@@ -3763,10 +3763,10 @@ that it passes in the list pointers themselves rather than the
 @code{car}s of the advancing pointers.
 @end defun
 
-@defun mapc function seq &rest more-seqs
+@defun cl-mapc function seq &rest more-seqs
 This function is like @code{mapcar*}, except that the values returned
 by @var{function} are ignored and thrown away rather than being
-collected into a list.  The return value of @code{mapc} is @var{seq},
+collected into a list.  The return value of @code{cl-mapc} is @var{seq},
 the first sequence.  This function is more general than the Emacs
 primitive @code{mapc}.
 @end defun